home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / reuse.lha / reuse / m2c / Texts.h < prev    next >
C/C++ Source or Header  |  1992-08-18  |  570b  |  22 lines

  1. #define DEFINITION_Texts
  2.  
  3. #ifndef DEFINITION_IO
  4. #include "IO.h"
  5. #endif
  6.  
  7. #ifndef DEFINITION_Lists
  8. #include "Lists.h"
  9. #endif
  10.  
  11. #ifndef DEFINITION_Strings
  12. #include "Strings.h"
  13. #endif
  14.  
  15. typedef Lists_tList Texts_tText;
  16. extern void Texts_MakeText ARGS((Texts_tText *Text));
  17. extern void Texts_Append ARGS((Texts_tText *Text, Strings_tString *String));
  18. extern void Texts_Insert ARGS((Texts_tText *Text, Strings_tString *String));
  19. extern BOOLEAN Texts_IsEmpty ARGS((Texts_tText *Text));
  20. extern void Texts_WriteText ARGS((IO_tFile f, Texts_tText Text));
  21. extern void BEGIN_Texts();
  22.